Release notes 2026

2026r2

Filter on product ID when searching for contracts using rights API

Previously, when searching for contracts using the rights API, there was only one way to find contracts for a specific product: by using the productTitle filter. However, if multiple products had the same or a similar name, this would produce inconsistent results.

From this version, to make the search for contracts of a specific product easier, the productId attribute has been added as a filter parameter to the GET /contracts search request. It uses the external reference of the product.

An example of the URL with this filter: GET /contracts?filter=eq(productId,143048527)

When the request is sent, the contracts linked to this product are returned in the response:

[
    {
        "contractId": "141879000",
        "contractNumber": "1",
        "distributor": "140963512",
        "contractName": "Films"
    }
]

API developers

Due to an error, the YAML was not yet updated for this change. However, the filter parameter can already be used by defining it manually.